home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / xnot12a.zip / NOTGNU.HP < prev    next >
Text File  |  1993-06-02  |  1KB  |  49 lines

  1. ;
  2. ; Startup file for notGNU emacs (notgnu.st).
  3. ; This form of file can be loaded at anytime using
  4. ; the extended command load-file.
  5. ;
  6. ;
  7. ; I like to make sure I don't edit a file in 2 places
  8. ; the default is NOT to check so this turns it on
  9. ;
  10. (toggle-check-file-timestamp)
  11. ;
  12. ; Various keybindings to make me happy
  13. ;
  14. ; "\^x" is ctrl-x
  15. ; "\F1" is function key F1
  16. ; "\Eo" is meta-o (or ESC-o)
  17. ; "\Kp-+" is keypad +
  18.  
  19. (global-set-key "\F1" 'goto-line)
  20. (global-set-key "\E+" 'enlarge-window)
  21. (global-set-key "\E-" 'shrink-window)
  22. (global-set-key "\E[" 'start-kbd-macro)
  23. (global-set-key "\E]" 'end-kbd-macro)
  24. (global-set-key "\E|" 'call-last-kbd-macro)
  25. (global-set-key "\^z" 'scroll-one-line-up)
  26. (global-set-key "\Ez" 'scroll-one-line-down)
  27. ;
  28. ; kinda matches VI % match function and gnu emacs
  29. ; ctrl-% match macro I defined
  30. ;
  31. (global-set-key "\E5" 'goto-match)
  32. (global-set-key "\^c" 'copy-region-as-kill)
  33. ;
  34. ; these at end since they will fail in DOS version
  35. ; because (1) shell-window is not a legal DOS command
  36. ; and (2) fkeys beyond 10 are not visible
  37. ;
  38. (global-set-key "\F7" 'make)
  39. (global-set-key "\F8" 'next-error)
  40. ;
  41. (set-window-size '42,81)
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.